home *** CD-ROM | disk | FTP | other *** search
/ Star Festival... a Return to Japan / Star Festival... a Return to Japan.iso / pc / STARFESTIVAL / 06q.dir / 00001_sM.ls next >
Encoding:
Text File  |  1999-03-11  |  1.3 KB  |  48 lines

  1. on startMovie
  2.   global gqtcurrenttime, gqtcurrentmovie, gPcVidSprite
  3.   gPcVidSprite = 52
  4. end
  5.  
  6. on stopMovie
  7.   global gqtcurrenttime
  8.   gqtcurrenttime = 0
  9.   stopmovieqt()
  10. end
  11.  
  12. on checkCursors
  13.   global gMagCursor
  14.   set the castNum of sprite 46 to the number of member "curs1"
  15.   if rollOver(4) then
  16.     set the castNum of sprite 46 to the number of member "hotCursor"
  17.   end if
  18.   repeat with i = 10 to 13
  19.     if rollOver(i) then
  20.       set the castNum of sprite 46 to the number of member "hotCursor"
  21.     end if
  22.   end repeat
  23.   if rollOver(16) then
  24.     set the castNum of sprite 46 to the number of member "hotCursor"
  25.   end if
  26.   if rollOver(18) then
  27.     set the castNum of sprite 46 to the number of member "hotCursor"
  28.   end if
  29.   if rollOver(20) then
  30.     set the castNum of sprite 46 to the number of member "hotCursor"
  31.   end if
  32.   if rollOver(22) then
  33.     set the castNum of sprite 46 to the number of member "hotCursor"
  34.   end if
  35.   repeat with i = 23 to 27
  36.     if rollOver(i) then
  37.       set the castNum of sprite 46 to the number of member "hotCursor"
  38.     end if
  39.   end repeat
  40.   if rollOver(40) then
  41.     set the castNum of sprite 46 to the number of member "nonCursor"
  42.   end if
  43.   if rollOver(41) then
  44.     set the castNum of sprite 46 to the number of member "nonCursor"
  45.     cursor(-1)
  46.   end if
  47. end
  48.